/* ============================================================================== */
/* 1. GLOBAL & CORE STYLING */
/* ============================================================================== */

.beranda,
.beranda * {
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.beranda {
    background: var(--putih);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ============================================================================== */
/* 2. HEADER & NAVIGASI STYLING */
/* ============================================================================== */

.header-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.125rem 15px 0 15px;
}
.hero {
    background: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.green-ray-logo-1 {
    flex-shrink: 0;
    width: 12.6425rem;
    height: 2.69125rem;
    position: relative;
    object-fit: cover;
    aspect-ratio: 202.28/43.06;
}

.header-menu {
    padding: 0.800625rem;
    display: flex;
    flex-direction: row;
    gap: 2.5rem; 
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.header-actions {
    display: flex;
    flex-direction: row;
    gap: 1.5rem; 
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

/* Menu Links */
.non-active, .active-head {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}
.active-head { font-weight: 700; }
.non-active:hover { font-weight: 700; }
.active-head a, .non-active a { text-decoration: none; color: black; }


/* Tombol Login */
.login-btn {
    background: #136000;
    border-radius: 9999px; 
    padding: 0.91375rem 1.218125rem 0.91375rem 1.218125rem;
    display: flex;
    flex-direction: row;
    gap: 0.50125rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none; /* Untuk tag <a> */
}
.login-btn:hover { transform: scale(1.03); }
.login-text { color: #ffffff; font-weight: 600; font-size: 0.9rem; font-family: 'Plus Jakarta Sans', sans-serif;}

/* Tombol Contact Us */
.contact-us-btn {
    background: #ffffff;
    border-radius: 9999px; 
    border: 0.07875rem solid #000000;
    padding: 0.91375rem 1.218125rem 0.91375rem 1.218125rem;
    display: flex;
    flex-direction: row;
    gap: 0.589375rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none; /* Untuk tag <a> */
}
.contact-us-btn:hover { transform: scale(1.03); }
.contact-us-text { color: #000000; font-weight: 600; font-size: 0.9rem; }


/* Ikon Helper */
.akar-icons--door{ 
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M5 2h11a3 3 0 0 1 3 3v14a1 1 0 0 1-1 1h-3'/%3E%3Cpath d='m5 2l7.588 1.518A3 3 0 0 1 15 6.459V20.78a1 1 0 0 1-1.196.98l-7.196-1.438A2 2 0 0 1 5 18.36zm7 10v2'/%3E%3C/g%3E%3C/svg%3E");
}

.mynaui--arrow-right {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4.5 12h15m0 0l-5.625-6m5.625 6l-5.625 6'/%3E%3C/svg%3E");
}

/* ============================================================================== */
/* 3. KATALOG PRODUK SECTION */
/* ============================================================================== */

.big-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 15px 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.title-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.text-heading-span {
    color: var(--hitam);
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
}
.text-heading-span2 {
    color: var(--hitam);
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
}

/* --- Card Grid Layout (Responsive) --- */
.card-container {
    display: grid;
    gap: 2rem 1.6rem;
    padding: 10px;
    align-content: center;
    align-self: stretch;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr); /* Default: 1 kolom */
}

@media (min-width: 768px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 kolom */
    }
}

@media (min-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 kolom */
    }
}

/* --- Card Item Styling Kustom (Menggantikan Gaya Bootstrap Default) --- */
.card-solar {
    width: 100% !important;
    height: 100% !important; 

    background: var(--putih);
    border-radius: 0.756875rem !important;
    border-style: solid;
    border-color: var(--hitam);
    /* PERUBAHAN: Border diubah menjadi 0.1875rem (3px) agar lebih tebal */
    border-width: 0.1875rem; 
    padding: 1.009375rem;
    display: flex;
    flex-direction: column;
    gap: 1.009375rem;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    
    /* HILANGKAN SHADOW PADA KONDISI NORMAL */
    box-shadow: none; 
    
    /* Set transform ke nilai awal (agar transisi bekerja) */
    transform: translateY(0); 

    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-solar:hover {
    /* Tambahkan efek scale dan shadow saat di-hover */
    box-shadow:
        0rem 0.0625rem 0.1875rem 0rem rgba(0, 0, 0, 0.26),
        0rem 0.3125rem 0.3125rem 0rem rgba(0, 0, 0, 0.23),
        0rem 0.6875rem 0.4375rem 0rem rgba(0, 0, 0, 0.13),
        0rem 1.25rem 0.5rem 0rem rgba(0, 0, 0, 0.04),
        0rem 1.9375rem 0.5625rem 0rem rgba(0, 0, 0, 0);
    transform: translateY(-5px); /* Efek melayang */
}

.card-solar .card-img-top {
    align-self: stretch;
    flex-shrink: 0;
    height: 8.75rem;
    object-fit: contain;
    border-radius: 0 !important;
}

.card-solar .card-body {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 1.009375rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-grow: 1; 
}

.card-solar .card-title {
    color: var(--hitam);
    text-align: center;
    font-size: 1.11rem;
    font-weight: 600;
    margin-bottom: 0 !important;
    width: 100%;
}

.card-solar .list-group {
    color: var(--hitam);
    font-size: 0.9rem;
    font-weight: 400;
    list-style: disc outside;
    padding-left: 20px;
    margin-bottom: 0 !important;
    border-top: none !important;
}

.card-solar .list-group-item {
    border: none;
    padding: 0;
    background-color: transparent;
    font-size: 0.908203065348816rem;
    line-height: 1.5;
    text-align: left;
}

.card-solar .btn-cta-solar {
    background: var(--hijau) !important;
    border-radius: 0.756875rem;
    padding: 0.756875rem 1.51375rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    border: none;
    transition: background-color 0.3s ease;
    width: 100%;
    text-decoration: none;
    color: var(--putih);
    font-size: 0.9rem;
    font-weight: 600;
}

.card-solar .btn-cta-solar:hover {
    background-color: #0d4600 !important;
    color: var(--putih);
}

.card-solar .btn-cta-solar .icon-arrow {
    display: inline-block;
    width: 1.26125rem;
    height: 1.26125rem;
    margin-left: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4.5 12h15m0 0l-5.625-6m5.625 6l-5.625 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


/* ============================================================================== */
/* 4. FOOTER STYLING */
/* ============================================================================== */

.footer {
    background: var(--putih);
    border-style: solid;
    border-color: var(--hitam);
    border-width: 0.03125rem 0rem 0rem 0rem;
    padding: 3.125rem 3.75rem 5rem 3.75rem;
    display: flex;
    flex-direction: row;
    gap: 6.0625rem;
    align-items: flex-start;
    justify-content: space-evenly;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    margin-top: 5rem;
}

.frame-51 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}
.frame-42 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}
.green-ray-logo-12 {
    flex-shrink: 0;
    width: 14.6675rem;
    height: 3.121875rem;
    position: relative;
    object-fit: cover;
    aspect-ratio: 234.68/49.95;
}
.dec-footer {
    color: var(--hitam);
    text-align: justify;
    font-size: 1.125rem;
    font-weight: 400;
    position: relative;
    width: 18.25rem;
}
.copyright {
    color: var(--hitam);
    text-align: left;
    font-size: 0.875rem;
    font-weight: 400;
    position: relative;
    align-self: stretch;
}
.menu-footer {
    display: flex;
    flex-direction: row;
    gap: 10rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}
.menu-container-footer {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}
.title-footer {
    color: var(--hitam);
    text-align: left;
    font-size: 1.7rem;
    font-weight: 500;
    position: relative;
}
.dec-container-footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.list-footer {
    color: var(--hitam);
    text-align: center;
    font-size: 1.125rem;
    position: relative;
    cursor: pointer;
}
.list-footer a {
    text-decoration: none;
    color: var(--hitam);
    font-weight: 400;
}
